home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import re
- from checkbox.lib.cache import cache
- from checkbox.lib.conversion import string_to_type
- from checkbox.properties import String
- from checkbox.registries.command import CommandRegistry
- from checkbox.registries.map import MapRegistry
-
- class PvsRegistry(CommandRegistry):
- '''Registry for pvs information.
-
- Each item contained in this registry consists information about
- the mount point.
- '''
- command = String(default = 'pvs')
- user = String(default = 'root')
-
- def items(self):
- items = []
- lines = _[1]
- return items
-
- items = cache(items)
-
- factory = PvsRegistry
-